home *** CD-ROM | disk | FTP | other *** search
/ EDUCORP 8 / Educorp2Compilation.sit / educorp2 / Demos / Aztec Source Level Debugger / demo / barchart.h next >
Encoding:
C/C++ Source or Header  |  1988-06-14  |  362 b   |  26 lines

  1. #include    <quickdraw.h>
  2. #include    <windows.h>
  3. #include    <serial.h>
  4. #include    <events.h>
  5. #include    <menus.h>
  6. #include    <desk.h>
  7. #include    <fonts.h>
  8. #include    <dialogs.h>
  9.  
  10. #define    appleMenu     99
  11.  
  12. #define    NMENUS    1
  13.  
  14. MenuHandle myMenus[NMENUS];
  15.  
  16. struct Rect dragRect;
  17. struct GrafPort *myWindow;
  18.  
  19. struct XYBase {
  20.     short xaxis;
  21.     short yaxis;
  22.     short xlength;
  23.     short ylength;
  24. };
  25.  
  26.